home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / LIBRARY / TPWENG / TBLPROTE.PAS < prev    next >
Pascal/Delphi Source File  |  1991-07-22  |  584b  |  28 lines

  1. program TblProte;
  2. uses PXEngine, WinCrt, WinTypes;
  3.  
  4. const TableName = 'Table';
  5.       Password  = 'Password';
  6.  
  7. var   PxErr: Integer;
  8.       Protected: Bool;
  9.  
  10. procedure PX(Code : integer);
  11. begin
  12.   writeln(PXErrMsg(Code));
  13. end;
  14.  
  15. begin
  16.   PX(PXWinInit('MyApp', pxShared));
  17.  
  18.     (* See if table is protected *)
  19.     PxErr := PXTblProtected(TableName, Protected);
  20.     if PxErr <> PxSuccess then
  21.       Writeln(PxErrMsg(PxErr))
  22.     else if Protected then
  23.            Writeln('Table is protected')
  24.          else Writeln('Table is not protected');
  25.  
  26.     PX(PXExit);
  27. end.
  28.